home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / system / mail / mailhand / metamail.z / metamail / bin / getfilename < prev    next >
Encoding:
Text File  |  1992-02-20  |  159 b   |  11 lines

  1. #!/bin/csh -f
  2.  
  3. echo -n "Enter the name of a file in '$1' format: "
  4. set fnam=$<
  5. if (! -r $fnam) then
  6.     echo No such file
  7.     exit -1
  8. endif
  9. cp $fnam $2
  10. exit 0
  11.